home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / Tutorial / Cookbook / 16.open_file / MyObject.h < prev    next >
Text File  |  1992-12-19  |  268b  |  18 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <appkit/appkit.h>
  5.  
  6. #define MAX_CHARS_PER_LINE 100
  7. #define MAX_LINES 100
  8.  
  9. @interface MyObject:Object
  10. {
  11.     id    openReq;    // OpenPanel for open requests 
  12. }
  13.  
  14. - openRequest:sender;
  15. -(int) openFile:(const char *)fileName;
  16.  
  17. @end
  18.